home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / ear / mui23dev.lha / MUI / Developer / Autodocs / MUI_Rectangle.doc < prev    next >
Text File  |  1994-12-23  |  1KB  |  49 lines

  1. TABLE OF CONTENTS
  2.  
  3. Rectangle.mui/Rectangle.mui
  4. Rectangle.mui/MUIA_Rectangle_HBar
  5. Rectangle.mui/MUIA_Rectangle_VBar
  6. Rectangle.mui/Rectangle.mui
  7.  
  8.     Rectangle class seems kind of useless since it
  9.     doesn't define any attributes or methods itself.
  10.     However, objects of this type are frequently
  11.     used in every application. They allow insertion
  12.     of space to control MUI's layout process.
  13. Rectangle.mui/MUIA_Rectangle_HBar
  14.  
  15.     NAME
  16.     MUIA_Rectangle_HBar -- (V7 ) [I.G], BOOL
  17.  
  18.     FUNCTION
  19.     When set to TRUE, MUI draws a horizontal bar in the middle of the
  20.     rectangle. Such bars can be used instead of group frames to
  21.     seperate objects in a window.
  22.  
  23.     EXAMPLE
  24.     /* draw a two pixel high bar in the middle
  25.            of an 8 pixel high rectangle */
  26.  
  27.     RectangleObject, MUIA_Rectangle_HBar, TRUE, MUIA_FixHeight, 8, End;
  28.  
  29.     SEE ALSO
  30.     MUIA_Rectangle_VBar
  31. Rectangle.mui/MUIA_Rectangle_VBar
  32.  
  33.     NAME
  34.     MUIA_Rectangle_VBar -- (V7 ) [I.G], BOOL
  35.  
  36.     FUNCTION
  37.     When set to TRUE, MUI draws a vertical bar in the middle of the
  38.     rectangle. Such bars can be used instead of group frames to
  39.     seperate objects in a window.
  40.  
  41.     EXAMPLE
  42.     /* draw a two pixel wide bar in the middle
  43.            of an 8 pixel wide rectangle */
  44.  
  45.     RectangleObject, MUIA_Rectangle_HBar, TRUE, MUIA_FixWidth, 8, End;
  46.  
  47.     SEE ALSO
  48.     MUIA_Rectangle_HBar
  49.